* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #ff5864, #ffb88c);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.login-box h1 {
    color: #ff5864;
    margin-bottom: 10px;
}

.login-box p {
    margin-bottom: 20px;
    color: #555;
}

.btn {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.google {
    background: #fff;
    border: 1px solid #ccc;
}

.phone {
    background: #ff5864;
    color: white;
}

.facebook {
    background: #3b5998;
    color: white;
}

.btn:hover {
    opacity: 0.9;
}

.terms {
    font-size: 12px;
    margin-top: 15px;
    color: #888;
}

/* Footer */
.footer-text {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: white;
    opacity: 0.8;
}