@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(62, 71, 104); /* Background color for the entire page */
    margin: 0; /* Remove default margin */
}

/*------------ Main Container ------------*/
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/*------------ Login container ------------*/
.box-area {
    width: 930px;
    background-color: rgb(255, 255, 255); /* Background color */
    color: rgb(0, 0, 0); /* Text color */
    border-radius: 30px; /* Rounded corners */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/*------------ Right box ------------*/
.right-box {
    padding: 40px 30px 40px 40px; 
}

.left-box {
    background-color: rgb(83, 93, 125); 
}

/*------------ Custom Placeholder ------------*/
::placeholder {
    font-size: 16px;
}

.rounded-4 {
    border-radius: 20px;
}

.rounded-5 {
    border-radius: 30px;
}

/*------------ For small screens------------*/
@media only screen and (max-width: 768px) {
    .box-area {
        margin: 0 10px;
    }

    .left-box {
        height: 100px;
        overflow: hidden;
    }

    .right-box {
        padding: 20px;
    }
}

/* Add transitions for buttons and input fields */
input[type="text"],
input[type="password"],
.btn {
    transition: all 0.3s ease; /* Smooth transition for all properties */
}

/* Button hover effects */
.btn:hover {
    background-color: rgb(62, 71, 104); /* Change to a darker shade */
    color: white; /* Change text color */
}

/* Button disabled state */
.btn:disabled {
    background-color: rgb(200, 200, 200); /* Light grey */
    color: #fff;
    cursor: not-allowed; /* Change cursor */
}

/* Input focus effects */
input:focus {
    border-color: rgb(62, 71, 104); /* Change border color */
    border-width: 2px; /* Thicker border */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgb(62, 71, 104); /* Add shadow effect */
}

/* Button active state */
.btn:active {
    transform: translateY(2px); /* Move button down */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Add shadow */
}
