
body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background: linear-gradient(135deg, #00b3a4, #f9a825);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;

}

.authentication-content {
    width: 100%;
    height: 100%;
}

.authentication-box {
    background: rgba(255, 255, 255, 0.2); 
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
    overflow: hidden;
    animation: fadeIn 0.8s ease-in-out;
    height: auto;
    width: 500px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.card-box,.logo-box{
width: 100%;
}

.authentication-box .logo-box {
    text-align: center;
    margin-top: 30px;
}

.authentication-box .logo-box img {
    width: 150px;
    height: auto;
}

.authentication-box .card-box {
    padding: 30px;
}


.btn-custom {
    background-color: #00b3a4;
    border: none;
    color: #fff;
    transition: background 0.3s ease;
    border-radius: 30px;
}

.btn-custom:hover {
    background-color: #007a70;
}

.form-label,.search-icon {
    font-weight: 600;
    color: #0c3d41; 
}
.form-control::placeholder {
    color: #0c3d41;
    font-weight: 400;
    opacity: 1;
}

a {
    color: #17757F;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 500px) {
   

    .authentication-box {
        padding: 5px;
        height: 80%;
        width: 100%;
    
    }

    .card-body {
        padding: 10px;
    }

    .logo img {
        width: 150px !important;
    }
}