@import url('https://fonts.googleapis.com/css?family=Numans');

html, body {
    height: 100%;
    font-family: 'Numans', sans-serif;
    background: linear-gradient(135deg, #141b1f, #f2f3f4, #141b1f);
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    min-height: 100%;
    align-content: center;
    margin-top: 0px;
    padding: 15px;
}
.register-card {
    height: 580px;
    margin-top: auto;
    margin-bottom: auto;
    width: 400px;
    background: linear-gradient(135deg, #253442, #8d9cab)!important;
    border-radius: 8px; /* Optional: for rounded corners */
}
.card {
    margin-top: auto;
    margin-bottom: auto;
    width: 400px;
    background: linear-gradient(135deg, #253442, #8d9cab)!important;
    border-radius: 8px; /* Optional: for rounded corners */
}

.card-header h3 {
    color: #CFD8DC; /* Light Blue Grey for text */
}

.input-group-prepend span {
    width: 50px;
    background-color: #4CAF50; /* Green background for input groups */
    color: black;
    border: 0 !important;
}

input:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 !important;
}

.remember {
    color: #CFD8DC; /* Light Blue Grey for text */
}

.remember input {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    margin-right: 5px;
}

.login_btn {
    color: white;
    background-color: #4CAF50; /* Green background for login button */
    width: 100px;
}

.login_btn:hover {
    color: white;
    background-color: #607D8B; /* Blue Grey for hover state */
}

.social_icon {
    position: absolute;
    right: 20px;
    top: -45px;
}

.social_icon > span > a {
    font-size: 60px;
    margin-left: 10px;
    color: #b219ff; /* A vibrant color for social icons, consider changing to fit the theme */
}
.social_icon > span > a:hover {
    color: #4f0b70; /* A vibrant color for social icons, consider changing to fit the theme */
}
.social_icon > span:hover {
    color: white;
    cursor: pointer;
}

.links {
    color: #CFD8DC; /* Light Blue Grey for links */
}

.links a {
    margin-left: 4px;
    color: #FFC107; /* Amber for clickable links */
}

.links> a:hover {
    margin-left: 4px;
    color: #918ce0; /* Amber for clickable links */
}
.pulsing-dot {
    animation: pulse-animation 2s infinite;
    animation-duration: 1.3s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-play-state: running;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    @keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.9);
    }
    100% {
        transform: scale(1);
    }
    }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        height: auto;
        padding: 10px;
    }
    
    .card {
        width: 100% !important;
        max-width: 100%;
        margin: 10px 0 !important;
    }
    
    .register-card {
        height: auto;
        width: 100% !important;
    }
    
    .card-header h3 {
        font-size: 24px;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .login_btn {
        width: 120px;
        font-size: 16px;
    }
    
    .links {
        font-size: 14px;
    }
    
    .links a {
        font-size: 14px;
    }
    
    .remember {
        font-size: 14px;
        margin-left: 0 !important;
    }
    
    .social_icon > span > a {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .card-header h3 {
        font-size: 20px;
    }
    
    .login_btn {
        width: 100px;
        font-size: 14px;
    }
}


