/* GLOBAL */
body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f0f2f5;
    margin:0;
}

*{
    box-sizing:border-box;
}

/* CONTAINER CARD */
.container{
    background:white;
    padding:30px;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,.1);
    width:100%;
    max-width:320px;
    margin:80px auto;
    text-align:center;
    animation:slideUp .6s ease;
}

/* LOGO */
.logo img{
    width:90%;
    margin-bottom:20px;
}

/* FORM */
form{
    width:100%;
    max-width:260px;
    margin:0 auto;
    text-align:left;
}

/* LABELS */
label{
    display:block;
    margin-top:12px;
    font-weight:bold;
    font-size:14px;
}

/* INPUTS */
input, textarea{
    width:100%;
    padding:12px;
    margin-top:5px;
    border-radius:6px;
    border:1px solid #ccc;
}

/* BUTTON */
button{
    margin-top:20px;
    width:100%;
    padding:12px;
    background:#F5C227;
    border:none;
    border-radius:6px;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#02DEE0;
}

/* STATES */
.error{
    color:red;
}

.success{
    color:green;
}

/* ANIMATION */
@keyframes slideUp{
    from{opacity:0; transform:translateY(40px);}
    to{opacity:1; transform:translateY(0);}
}

/* NAVBAR */
.navbar{
    width:100%;
    background:white;
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    position:sticky;
    top:0;
    z-index:1000;
}

/* Logo */
.nav-left img{
    height:40px;
}

/* Links */
.nav-right a{
    margin-left:20px;
    text-decoration:none;
    color:#333;
    font-weight:bold;
    transition:.3s;
}

.nav-right a:hover{
    color:#F5C227;
}

.nav-right a:last-child{
    color:#F5C227;
}

.nav-user{
    margin-left:20px;
    text-decoration:none;
    color:#;
    font-weight:bold;
    transition:.3s;
}

.dropdown-menu{
    display:none;
}

.dropdown-menu.active{
    display:block;
}