﻿/* Center the login card on the screen */
.login-container {
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh; /* Full viewport height */
    background: linear-gradient(135deg, rgba(47, 109, 68, 0.65), rgba(55, 53, 102, 0.65));
    background-repeat: no-repeat;
    background-size: cover;
}

/* Card style */
.login-card {
    background-color: #fff; /* White background for the card */
    padding: 30px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for the card */
    max-width: 500px;
    width: 100%;
    text-align: center; /* Center content inside the card */
    /*backdrop-filter: blur(5px);*/ /* Adds a blur effect */
}

/* Input container */
.input-container {
    position: relative;
    margin-bottom: 20px;
}

/* Icons in the inputs */
.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #888;
}

/* Rounded inputs */
.rounded-input {
    padding: 10px 10px 10px 40px; /* Add space for the icon */
    border-radius: 25px;
    border: 1px solid #ccc;
    width: 100%;
    font-size: 16px;
    transition: border-color 0.3s ease;
    color: #373566
}

/* Input focus styles */
.rounded-input:focus {
    border-color: #2f6d44;
    outline: none;
}

/* Button styling */
button.btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2f6d44
}

/* Responsive adjustments (optional) */
@media (max-width: 768px) {
    .login-card {
        padding: 20px;
        max-width: 90%;
    }
}
