/* Psono Login Screen Styling */

.psono-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: rgb(15, 17, 24);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: #ffffff;
    padding: 2rem;
    box-sizing: border-box;
}

.psono-logo-container {
    margin-bottom: 2rem;
    text-align: center;
}

.psono-logo {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
}

.psono-message {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 480px;
    padding: 0 1.5rem;
}

.psono-message h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.psono-message p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.psono-link-container {
    margin-top: 2rem;
}

.psono-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1px;
    transition: all 0.2s ease;
}

.psono-link:hover {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

html, body {
    background-color: rgb(15, 17, 24) !important;
    margin: 0 !important;
    padding: 0 !important;
}

body * {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif !important;
}

.login-ui .login-dialog,
.login-ui .login-form,
.login-ui form {
    display: none !important;
}

@media (max-width: 768px) {
    .psono-login-container {
        padding: 1.5rem;
    }
    
    .psono-message h2 {
        font-size: 1.5rem;
    }
    
    .psono-message p {
        font-size: 0.9rem;
    }
    
    .psono-logo {
        max-width: 140px;
    }
    
    .psono-message {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
}

.psono-logo {
    animation: fadeInUp 0.6s ease-out;
}

.psono-message {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}