body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F9F9F9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.container {
    width: 360px; /* Further reduced width for a sleeker look */
    padding: 18px 28px; /* Adjusted padding */
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, #FFFFFF 0%, #F3F3F3 100%);
}

.login-logo img {
    display: block;
    margin: 15px auto 25px auto; /* Maintaining the margin for spacing */
    width: 120px; /* Reduced logo size */
    height: auto;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: bold;
    color: #1D344F;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 8px 18px; /* Slightly reduced padding for a more refined look */
    border: 2px solid #ABCED3;
    border-radius: 6px;
    font-size: 15px;
    color: #1D344F;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #1D344F;
    outline: none;
}

.login-button {
    width: 100%;
    padding: 10px; /* Adjusted padding */
    background: linear-gradient(140deg, #1D344F 0%, #1A2A45 100%); /* Enhanced gradient */
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-button:hover {
    background: linear-gradient(140deg, #1A2A45 0%, #1D344F 100%);
}

.register-link {
    text-align: center;
    margin-top: 20px;
    color: #1D344F;
}

.register-link a {
    color: #ABCED3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: #1D344F;
}
