*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
}

.phone{
    width: 360px;
    min-height: 740px;
    background: linear-gradient(to bottom, #050505, #0b0b0b);
    border: 1px solid #222;
    border-radius: 35px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 191, 0, 0.1);
}

.back-button{
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
    cursor: pointer;
}

.logo-section{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-section img{
    width: 150px;
}

.welcome h1{
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: bold;
}

.welcome p{
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

.login-form{
    width: 100%;
}

.input-box{
    width: 100%;
    height: 55px;
    background: #111;
    border: 1px solid #222;
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    margin-bottom: 16px;
    transition: 0.3s;
}

.input-box:focus-within{
    border-color: #d4a017;
    box-shadow: 0 0 10px rgba(212,160,23,0.3);
}

.input-box i{
    color: #d4a017;
    margin-right: 12px;
    font-size: 14px;
}

.input-box input{
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 15px;
}

.input-box input::placeholder{
    color: #666;
}

.forgot{
    text-align: right;
    margin-bottom: 22px;
}

.forgot a{
    color: #d4a017;
    text-decoration: none;
    font-size: 13px;
}

.login-btn{
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(to right, #b8860b, #f5c542);
    color: black;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover{
    transform: scale(1.02);
}

.divider{
    margin: 28px 0;
    text-align: center;
    position: relative;
}

.divider span{
    color: #777;
    font-size: 13px;
    background: #0b0b0b;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.divider::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #222;
    left: 0;
    top: 50%;
}

.social-buttons{
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.social-btn{
    flex: 1;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #222;
    background: #111;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social-btn:hover{
    border-color: #d4a017;
}

.register{
    text-align: center;
    color: #777;
    font-size: 14px;
}

.register a{
    color: #d4a017;
    text-decoration: none;
    font-weight: bold;
}
