
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f2f5; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}
*{
    box-sizing:border-box;
}

.login-container {
    background: white;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 100%;
    height: 70%;
    max-width: 800px; 
    overflow: hidden; 
}

.left-box {
    background: linear-gradient(135deg, #2f5dd8, #b8c5f2); 
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-box .logo img {

    width: 200px;
    max-width: 100%;

}

.login-box {
    width: 55%;
    padding: 40px;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
   
}
.login-box > div{
    padding: 30px 20px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
}

.login-box h1 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
}

.login-box p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.input-container {
    margin-bottom: 20px;
    text-align: right;
}
input[type=password]{
    margin-top: 20px;
}

.input-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box; 
}

.input-container input:focus {
    border-color: #2f5dd8;
}

.continue-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2f5dd8, #b8c5f2); 
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 20px;
}

.continue-button:hover {
    background:#2f5dd8; 
}