body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #171717;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 486px;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.container h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.container p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.container .input-login {
    width: 366px;
    height: 51px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 7px;
    background-color: #FFFFFF;
    color: #555555;
    font-size: 14px;
    box-sizing: border-box;
}

.container .input-login:focus {
    border-color: #00A1F0;
    outline: none;
    box-shadow: 0 0 5px #00A1F0;
}

.container .button-login {
    width: 366px;
    height: 51px;
    padding: 10px;
    background-color: #00A1F0;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.container .button-login:hover {
    background-color: #357ab8;
}

.links {
    margin-top: 15px;
    text-align: center;
}

.create-account {
    font-size: 16px;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.create-account .create {
    color: #00A1F0;
    text-decoration: none;
    font-weight: bold;
}

.create-account .create:hover {
    text-decoration: underline;
}

.links .password {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.links .password:hover {
    text-decoration: underline;
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo img {
    width: 214px;
    height: 95px;
    object-fit: contain;
}

.status-message {
    background-color: #ff4d4f;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.status-message-recovery {
    background-color: #28a745;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.error-message {
    background-color: #ff4d4f;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}