* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;

    background:
    linear-gradient(rgba(60,20,10,0.65), rgba(60,20,10,0.65)),
    url("image/cookies.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* HIDE LEFT SIDE */
.login-left {
    display: none;
}

/* RIGHT SIDE */
.login-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LOGIN CARD */
.login-container {
    width: 400px;
    max-width: 400px;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    
    padding: 40px;
    
    border-radius: 28px;
    
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.logo-img {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}

.logo-img img {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
}

/* TITLE */
.login-container h2 {
    text-align: center;
    color: #641408;
    font-size: 38px;
    margin-bottom: 8px;
}

.subtitle {
    text-align: center;
    color: #8b6b61;
    margin-bottom: 30px;
    font-size: 15px;
}

/* FORM */
.input-group {
    margin-bottom: 22px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;

    color: #641408;
    font-weight: 600;
}


/* INPUT */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a1c0d;
}

.input-icon input,
.input-icon select {
    width: 100%;

    padding: 14px 14px 14px 45px;

    border-radius: 14px;
    border: 1px solid #d8b7a6;

    background: #fffaf7;

    outline: none;
    font-size: 15px;
}

.input-icon input:focus,
.input-icon select:focus {
    border-color: #641408;
    box-shadow: 0 0 0 4px rgba(100,20,8,0.10);
}

/* BUTTON */
button {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(to right, #641408, #8a1c0d);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(100,20,8,0.25);
}

/* REGISTER */
.register-link {
    margin-top: 22px;
    text-align: center;
}

.register-link a {
    color: #641408;
    text-decoration: none;
    font-weight: bold;
}

.register-link a:hover {
    text-decoration: underline;
}

/* ERROR */
.error {
    margin-top: 15px;
    text-align: center;
    color: red;
}

/* REGISTER PAGE COMPACT */
.login-container.register-box {
    width: 480px;
    max-width: 480px;
    
    padding: 35px 40px;
}


.register-box textarea {
    min-height: 80px;
}

.register-box .input-group {
    margin-bottom: 0;
}

.register-box input,
.register-box textarea {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #d8b7a6;
    background: #fffaf7;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

.register-box input:focus,
.register-box textarea:focus {
    border-color: #641408;
    box-shadow: 0 0 0 4px rgba(100,20,8,0.10);
}