/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background halaman */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #1e293b, #334155);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card utama */
.daftarpage {
    width: 100%;
    max-width: 450px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Judul */
.text1 {
    text-align: center;
    color: #1e293b;
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Container input */
.input {
    display: flex;
    flex-direction: column;
}

/* Label */
.text2 {
    margin-bottom: 8px;
    margin-top: 12px;
    font-weight: bold;
    color: #475569;
    font-size: 14px;
}

/* Input */
#inputUsername,
#inputPassword {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
}

/* Efek saat diklik */
#inputUsername:focus,
#inputPassword:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
}

/* Tombol */
#submitDaftar {
    margin-top: 25px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover tombol */
#submitDaftar:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Saat ditekan */
#submitDaftar:active {
    transform: scale(0.98);
}

/* Link Back to Home */
.back-home {
    text-decoration: none;
    color: #2563eb;
    font-weight: bold;
    transition: 0.3s;
}

.back-home:hover {
    color: #1d4ed8;
    text-decoration: underline;
}