/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BODY */
body {
    min-height: 100vh;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* KONTAINER */
.kontiner {
    background-color: #ffffff;
    padding: 35px 30px;
    width: 360px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* TITLE */
.kontiner h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #1e293b;
}

/* FORM */
.formedit label {
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.formedit input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    outline: none;
    font-size: 14px;
}

.formedit input:focus {
    border-color: #38bdf8;
}

/* BOTTOM AREA */
.kontinerbawah {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

/* BUTTON */
.kontinerbawah button {
    padding: 12px;
    background-color: #38bdf8;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.kontinerbawah button:hover {
    background-color: #0284c7;
}

/* WARNING TEXT */
.kontinerbawah p {
    font-size: 13px;
    color: #ef4444;
    min-height: 16px;
}

/* LINK */
.kontinerbawah a {
    font-size: 14px;
    text-decoration: none;
    color: #2563eb;
    font-weight: bold;
}

.kontinerbawah a:hover {
    color: #1d4ed8;
}
