* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    width: 900px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}


.login-left {
    padding: 40px;
    width: 70%;
}

.login-right {
    width: 30%;
    background-color: #D6336C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration {
    max-width: 80%;
    height: auto;
    align-items: center;
}

.logo {
    width: 30%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    margin: 10px 0;
}

form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

select, input {
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    font-size: 14px;
}

button {
    background-color: #D6336C;
    color: #fff;
    border: none;
    padding: 10px 0;
    width: 130px; /* fixed width */
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
    text-align: center;
}


button:hover {
    background-color: #b92859;
}

p {
    margin-top: 10px;
    font-size: 14px;
}

.alt-link {
    color: #D6336C;
}

a {
    font-weight: bold;
    text-decoration: none;
    color: #D6336C;
}

a:hover {
    text-decoration: underline;
}
