*{
    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.08);
}

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

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

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

.title-section{
    margin-bottom: 28px;
}

.title-section h1{
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 10px;
    font-weight: bold;
}

.title-section p{
    color: #888;
    font-size: 14px;
}

.cards{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card{
    width: 100%;
    min-height: 120px;
    background: linear-gradient(to bottom, #111, #0c0c0c);
    border: 1px solid #1d1d1d;
    border-radius: 22px;
    padding: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    text-decoration: none;
    color: white;

    transition: 0.3s;
}

.card:hover{
    border-color: #d4a017;
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(212,160,23,0.15);
}

.card-left{
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-circle{
    min-width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid #d4a017;

    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle i{
    color: #d4a017;
    font-size: 22px;
}

.card-text h2{
    font-size: 19px;
    margin-bottom: 8px;
}

.card-text p{
    color: #8a8a8a;
    font-size: 13px;
    line-height: 20px;
}

.arrow i{
    color: #d4a017;
    font-size: 16px;
    transition: 0.3s;
}

.card:hover .arrow i{
    transform: translateX(4px);
}

.login-link{
    margin-top: 35px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

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