sistem_rekomendasi/public/css/auth.css

107 lines
2.3 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');
:root {
--asgard-green-dark: #064e3b;
--asgard-green-bright: #10b981;
--asgard-lime: #a3e635;
}
body.auth-page {
background-color: #f0fdf4;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Plus Jakarta Sans', sans-serif;
margin: 0;
}
/* Container Utama Split Screen */
.login-container {
width: 100%;
max-width: 1100px;
height: 700px;
background: white;
display: flex;
border-radius: 3rem;
overflow: hidden;
box-shadow: 0 50px 100px -20px rgba(6, 78, 59, 0.15);
}
/* Sisi Kiri: Visual Identity */
.login-visual {
flex: 1;
background: linear-gradient(135deg, var(--asgard-green-dark) 0%, #065f46 100%);
display: none;
flex-direction: column;
justify-content: center;
padding: 60px;
position: relative;
color: white;
}
@media (min-width: 768px) {
.login-visual { display: flex; }
}
.visual-pattern {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
opacity: 0.1;
background-image: radial-gradient(#fff 1px, transparent 1px);
background-size: 30px 30px;
}
/* Sisi Kanan: Form */
.login-form-area {
flex: 1;
padding: 60px;
display: flex;
flex-direction: column;
justify-content: center;
}
.input-modern {
background: #f8fafc;
border: 2px solid #f1f5f9;
border-radius: 1.2rem;
padding: 1rem 1.5rem;
font-weight: 600;
font-size: 0.875rem;
transition: all 0.3s ease;
}
.input-modern:focus {
background: white;
border-color: var(--asgard-green-bright);
outline: none;
box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}
.btn-login {
background: var(--asgard-green-dark);
color: white;
padding: 1rem;
border-radius: 1.2rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.1em;
font-size: 0.75rem;
transition: all 0.3s ease;
}
.btn-login:hover {
background: #000;
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
}
.badge-ai {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.65rem;
font-weight: 800;
letter-spacing: 0.2em;
}