/* assets/css/auth.css */

:root {
    --bg-primary: #f8dc3d;
    --text-secondary: #4c2013;
    --accent-third: #f7cb9e;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: var(--bg-primary);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-family: sans-serif;
}

/* Background Text */
body::before{
    content: "BANANAGO";
    position: absolute;
    font-size: 170px;
    font-weight: 900;
    color: rgba(76, 32, 19, 0.05);
    z-index: 0;
}

/* CARD */
.auth-form{
    position: relative;
    z-index: 2;
    width: 420px;
    background: white;
    padding: 45px;
    border-radius: 35px;
    box-shadow: 0 15px 40px rgba(76, 32, 19, 0.18);
    text-align: center;
}

/* TITLE */
.auth-form h2{
    color: var(--text-secondary);
    font-size: 50px;
    margin-bottom: 30px;
    font-weight: 900;
}

/* INPUT */
.auth-form input{
    width: 100%;
    height: 58px;
    border-radius: 50px;
    border: 2px solid var(--accent-third);
    margin-bottom: 18px;
    padding: 0 22px;
    font-size: 15px;
    transition: 0.3s ease;
}

.auth-form input:focus{
    outline: none;
    border-color: var(--text-secondary);
    box-shadow: 0 0 12px rgba(76, 32, 19, 0.15);
}

/* BUTTON */
.btn-auth{
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 50px;
    background-color: var(--text-secondary);
    color: var(--bg-primary);
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    box-shadow: 0 10px 25px rgba(76, 32, 19, 0.25);
}

.btn-auth:hover{
    background-color: #2d120a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(76, 32, 19, 0.35);
}

.btn-auth:active{
    transform: scale(0.98);
}

/* TEXT */
.auth-text{
    margin-top: 22px;
    color: var(--text-secondary);
    font-size: 15px;
}

.auth-text a{
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 900;
}

.auth-text a:hover{
    color: black;
}

/* BACK BUTTON */
.btn-home{
    display: inline-block;
    margin-top: 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s ease;
}

.btn-home:hover{
    transform: translateX(-5px);
    color: black;
}