body {
    margin: 0;
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #e0f7fa, #e8f5e9);
}

.login-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    max-width: 100%;
    padding: 44px 22px 30px;
    border: none;
    border-radius: 0;
    text-align: center;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    margin-bottom: 26px;
}

.logo img {
    width: 176px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 18px 32px rgba(10, 84, 118, 0.16));
}

form {
    display: grid;
    gap: 14px;
    margin-top: 0;
    padding: 22px 18px 18px;
    border-radius: 26px;
    background: linear-gradient(145deg, #f1f8e9, #e3f2fd);
    box-shadow: 0 22px 44px rgba(15, 83, 120, 0.14);
}

form > div {
    width: 100%;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    margin: 0;
    min-height: 52px;
    padding: 15px 16px;
    color: #143244;
    border: 1px solid rgba(19, 71, 102, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.14);
}

button {
    width: 100%;
    min-height: 54px;
    margin: 2px 0 0;
    padding: 14px 16px;
    border: none;
    border-radius: 18px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, #4fc3f7, #69d0f8);
    box-shadow: 0 14px 28px rgba(22, 152, 213, 0.24);
}

a {
    display: inline-flex;
    justify-content: center;
    align-self: center;
    margin-top: 18px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
}

#senha-error {
    position: static !important;
    margin-top: 8px;
    white-space: normal !important;
    text-align: left;
    line-height: 1.4;
    border-radius: 12px !important;
}
