/* Master Layout Styles - Extracted from master.blade.php */

/* Spinning circle loader animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

html {
    display: flex;
    width: 100%;
}

.login-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: radial-gradient(
        circle at bottom left,
        rgba(168, 132, 255, 0.2),
        transparent 70%
    ),
    radial-gradient(
        circle at top right,
        rgba(168, 132, 255, 0.15),
        transparent 70%
    );
    background-color: #f9f9f9;
}

.login-page .container {
    max-width: 1470px;
}

.content-wrapper, 
main, 
.main-content {
    margin-top: 50px;
}

.container {
    width: 100%;
}

