/* ==========================================
   FOODREVIEW+ REGISTER
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#edf1f5;

    color:#333;

}

/* =============================== */

.register-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:120px 20px 60px;

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/login-bg.jpg") center center no-repeat;

    background-size:cover;

}

/* =============================== */

.register-box{

    width:100%;

    max-width:520px;

    background:rgba(255,255,255,.96);

    border-radius:20px;

    padding:45px;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

/* =============================== */

.register-logo{

    text-align:center;

    margin-bottom:35px;

}

.register-logo h1{

    font-size:40px;

    color:#E50914;

    margin-bottom:10px;

}

.register-logo p{

    color:#666;

    line-height:1.7;

}

/* =============================== */

.alert-error{

    background:#ffe8e8;

    color:#d30000;

    padding:15px;

    border-radius:10px;

    margin-bottom:25px;

    font-size:14px;

}

/* =============================== */

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.form-group input{

    width:100%;

    height:52px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;

    font-size:15px;

    transition:.3s;

}

.form-group input:focus{

    outline:none;

    border-color:#E50914;

    box-shadow:0 0 0 3px rgba(229,9,20,.15);

}

/* =============================== */

.password-box{

    position:relative;

}

.password-box input{

    padding-right:60px;

}

.toggle-password{

    position:absolute;

    top:0;

    right:0;

    width:52px;

    height:52px;

    border:none;

    background:none;

    cursor:pointer;

    font-size:20px;

    color:#777;

}

/* =============================== */

.form-check{

    margin:25px 0;

    font-size:14px;

}

.form-check label{

    display:flex;

    align-items:center;

    gap:10px;

}

/* =============================== */

.btn-register{

    width:100%;

    height:55px;

    border:none;

    border-radius:10px;

    background:#E50914;

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.btn-register:hover{

    background:#c40812;

}

/* =============================== */

.register-footer{

    margin-top:30px;

    text-align:center;

    font-size:15px;

}

.register-footer a{

    color:#E50914;

    text-decoration:none;

    font-weight:600;

}

.register-footer a:hover{

    text-decoration:underline;

}

/* =============================== */

@media(max-width:768px){

.register-box{

padding:30px;

}

.register-logo h1{

font-size:30px;

}

}

@media(max-width:480px){

.register-page{

padding:90px 15px 40px;

}

.register-box{

padding:25px;

border-radius:15px;

}

.register-logo h1{

font-size:28px;

}

}