* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* HEADER */
header {
    background: #ffba52;
    padding: 15px 30px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #000;
}

/* MAIN */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    min-height: 70vh;
    background: #f5f7fa;
    padding: 20px;
}

/* FORM */
.form-box {
    background: #fff;
    padding: 30px;
    width: 320px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.top-icon img {
    width: 60px;
    margin-bottom: 10px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #888;
}

.input-group input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* BUTTON */
.btn {
    width: 100%;
    padding: 12px;
    background: #ffba52;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* IMAGE */
.right-sidebar img {
    width: 550px;
}

/* MESSAGE */
#message {
    margin-top: 10px;
}

/* FEATURES */
.section {
    padding: 50px 20px;
}

.container {
    max-width: 1000px;
    margin: auto;
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #ffba52;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 25px;
    color: #ffba52;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #ffba52;
    padding: 20px;
    text-align: center;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

footer a {
    text-decoration: none;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }

    .box-grid {
        grid-template-columns: 1fr;
    }

    .right-sidebar img {
        width: 200px;
    }
/* ERROR MESSAGE STYLE */
#error-message,
#message {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
}

/* ERROR TITLE (BOLD + RED) */
.error-title {
    color: #d93025;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
