/* web/static/css/auth.css */
.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 20px;
}

.login-box {
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.app-logo-row {
    margin-bottom: 40px;
}

.app-logo {
    width: 60px;
    filter: invert(1);
    margin-bottom: 10px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    background: #1c1c1e;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.input-group input::placeholder {
    color: #8e8e93;
}

.btn-login {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
}

.login-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: #8e8e93;
}

.thinkdigital-logo {
    width: 100px;
    opacity: 0.5;
    margin-bottom: 5px;
}