/* Estilos mínimos adaptados para Blazor login */
:root {
    --primary: #57b846;
    --dark: #222;
}

* {
    box-sizing: border-box
}

body {
    font-family: 'Poppins',sans-serif;
    background: #f2f2f2;
    margin: 0
}

.limiter {
    width: 100%;
    margin: 0 auto
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px
}

.wrap-login100 {
    width: 900px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    box-shadow: 0 10px 30px rgba(0,0,0,.1)
}

.login100-pic {
    width: 50%;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center
}

    .login100-pic img {
        max-width: 100%;
        height: auto
    }

.login100-form {
    width: 50%;
    padding: 60px 55px
}

.login100-form-title {
    display: block;
    font-size: 30px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 30px
}

.wrap-input100 {
    position: relative;
    margin-bottom: 20px
}

.input100 {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-size: 14px
}

.focus-input100 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    pointer-events: none
}

.symbol-input100 {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999
}

.container-login100-form-btn {
    display: flex;
    justify-content: center;
    margin-top: 18px
}

.login100-form-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600
}

.text-center {
    display: block;
    text-align: center;
    margin-top: 12px
}

.txt1 {
    color: #999;
    margin-right: 6px
}

.txt2 {
    color: var(--primary);
    text-decoration: none
}

@media (max-width:800px) {
    .wrap-login100 {
        flex-direction: column
    }

    .login100-pic, .login100-form {
        width: 100%
    }

    .login100-form {
        padding: 40px
    }
}
