/* Authentication Pages Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header .telco-title {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: var(--secondary-color);
    font-size: 1.1em;
    margin-bottom: 20px;
}

.auth-form {
    margin-top: 20px;
}

.auth-form .field {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.auth-form .ui.input {
    width: 100%;
}

.auth-form .ui.input input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1em;
}

.auth-form .ui.input input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.auth-form .ui.checkbox {
    margin-top: 10px;
}

.auth-form .ui.checkbox label {
    display: inline;
    margin-left: 8px;
}

.auth-form .ui.button {
    margin-top: 20px;
    padding: 12px;
    font-size: 1em;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.auth-form .ui.button:hover {
    background: var(--primary-gradient);
}

.auth-links {
    margin-top: 20px;
    text-align: center;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9em;
}

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

/* Error and Success Messages */
.ui.message {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 4px;
}

.ui.error.message {
    background-color: #fff2f0;
    border: 1px solid #ffccc7;
    color: #cf1322;
}

.ui.success.message {
    background-color: #f6ffed;
    border: 1px solid #b7eb8f;
    color: #389e0d;
}

/* Loading State */
.ui.button.loading {
    position: relative;
    color: transparent !important;
}

.ui.button.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.2em;
    height: 1.2em;
    margin: -0.6em 0 0 -0.6em;
    border: 0.2em solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: button-loading-spinner 0.6s linear infinite;
}

@keyframes button-loading-spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 480px) {
    .auth-card {
        padding: 20px;
    }
    
    .auth-header .telco-title {
        font-size: 1.8em;
    }
    
    .auth-subtitle {
        font-size: 1em;
    }
}

.terms-notice {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    margin: 15px 0;
    line-height: 1.4;
}

.terms-notice a {
    color: #c026d3;
    text-decoration: none;
}

.terms-notice a:hover {
    text-decoration: underline;
} 