﻿body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.auth-container {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.text-gradient {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
}

.btn-gradient {
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

    .btn-gradient:hover {
        background: linear-gradient(90deg, #ff5722, #ff9800);
        transform: scale(1.05);
    }

.auth-link {
    color: #ff5722;
    text-decoration: none;
}

    .auth-link:hover {
        text-decoration: underline;
    }

.auth-container {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.text-gradient {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
}

.btn-gradient {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

    .btn-gradient:hover {
        background: linear-gradient(90deg, #ff5722, #ff9800);
        transform: scale(1.05);
    }

.auth-link {
    color: #ff5722;
    text-decoration: none;
}

    .auth-link:hover {
        text-decoration: underline;
    }
