body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('/assets/img/login_page.webp'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95); 
    border-radius: 8px;
    box-shadow:0 0 5px rgba(0, 0, 0, 0.766);
    transition: box-shadow 0.3s ease-in-out;
    animation: flipAnimation 2s forwards;
}

.login-container:hover {
    box-shadow: 0 0 10px rgb(236,148,34,255); 
}

.login-container .logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-container .logo img {
    max-width: 100px; 
    height: auto;
}

.login-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.form-group input {
    width: 95%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #EC9422;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.2);
}

.btn {
    width: 70%;
    padding: 10px;
    font-size: 16px;
    background-color: #fff; /* White background */
    border: 2px solid #000; /* Black border */
    border-radius: 5px;
    color: #000; /* Black text color */
    cursor: pointer;
    display: block; 
    margin: 0 auto;
    text-align: center; /* Ensures text stays centered */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
}

.btn:hover {
    background-color: #EC9422;
}

.form-footer {
    text-align: center;
    margin-top: 15px;
}

.form-footer a {
    color: #007bff;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.logo img {
    max-width: 300px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

.google-sign-container {
    text-align: center; /* Centers the content inside the container */
    margin: 20px 0; /* Adds some space above and below */
}

.google-sign-img {
    width: 256px; /* Sets the width of the image */
    max-width: 100%; /* Ensures the image is responsive */
}

@keyframes flipAnimation {
    0% {
        transform: rotateY(180deg); 
        opacity: 0; 
    }
    100% {
        transform: rotateY(0deg); 
        opacity: 1; 
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 15px;
    }

    .login-container h1 {
        font-size: 20px;
    }

    .form-group input, .btn {
        font-size: 14px;
    }
    
}
