* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    text-align: center;
    width: 400px;
    position: relative;
}

.logo {
    max-width: 150px;
    margin-bottom: 30px;
}

h1 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
}

.subtexto {
    color: #0077c8;
    font-size: 14px;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

label {
    font-size: 12px;
    color: #333;
    margin-bottom: 5px;
}

input {
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #aaa;
    border-radius: 2px;
}

button {
    padding: 12px;
    font-size: 14px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    text-transform: lowercase;
    margin-top: 10px;
}

.corner-logo {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 70px;
}

.logo-bottom-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 100px;
}

.version-info {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 10px;
    color: #555;
}