* {
    box-sizing: border-box;
}

body.artist-login-page {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: Arial, sans-serif;
    background: #fde7d6;
    color: #111827;
}

.artist-login-box {
    width: min(100%, 440px);
    padding: 38px 34px 34px;
    border-radius: 12px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}



        .artist-login-logo {
            width: 150px;
            max-width: 70%;

            height: auto;
            margin: 0 auto 12px;
            display: block;
        }


   .artist-login-box h1 {
            margin: 0 0 10px;
            font-size: 24px;
            color: #111827;
        }

        .artist-login-error {
            margin-bottom: 16px;
            padding: 11px 13px;
            border-radius: 8px;
            background: #fee2e2;
            color: #991b1b;
            font-size: 14px;
            font-weight: 700;
            text-align: left;
        }

        .artist-login-box input[type="email"],
        .artist-login-box input[type="password"] {
            width: 100%;
            margin-bottom: 16px;
            padding: 13px 14px;
            border: 1px solid #c9cdd3;
            border-radius: 7px;
            font-size: 15px;
            outline: none;
        }

        .artist-login-box input:focus {
            border-color: #15a9df;
            box-shadow: 0 0 0 3px rgba(21, 169, 223, 0.12);
        }

        .artist-remember-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: -4px 0 16px;
            color: #4b5563;
            font-size: 14px;
            text-align: left;
        }

        .artist-login-button {
            width: 100%;
            border: 0;
            border-radius: 7px;
            padding: 14px 16px;
            background: #af5e94;
            color: #ffffff;
            font-size: 20px;
            cursor: pointer;
            transition: 0.25s;
        }

        .artist-login-button:hover {
            background: #078fc2;
        }

        .artist-login-links {
            margin-top: 22px;
            color: #0056b3;
            font-size: 16px;
        }

        .artist-login-links a {
            color: #0056b3;
            text-decoration: none;
        }

        .artist-login-links a:hover {
            text-decoration: underline;
        }

        @media (max-width: 520px) {
            .artist-login-box {
                padding: 30px 20px 28px;
            }

            .artist-login-box h1 {
                font-size: 20px;
            }
        }



.artist-login-text {
    margin: 0 0 22px;
    color: #4b5563;
    line-height: 1.5;
    font-size: 15px;
}

.artist-login-message {
    margin-bottom: 16px;
    padding: 11px 13px;
    border-radius: 8px;
    background: #dcfce7;
    color: #166534;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

