/* style.css */

/* register & login */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

header {
    background-color: #F39322;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    background-color: #F39322;
    color: white;
}

.container {
    max-width: 400px;
    margin: 50px auto;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
}

/* Back button styles */
.back-button {
    display: inline-block;
    margin-bottom: 20px;
    color: #F39322;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid #F39322;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #F39322;
    color: white;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    background-color: #F39322;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

button:hover {
    background-color: #F39322;
}

/* Responsive design */
@media (max-width: 480px) {
    .container {
        margin: 20px;
        padding: 15px;
        /* Full viewport height */
        text-align: center;
        /* Center text inside the elements */
        justify-content: center;
        /* Center vertically */
    }

    .back-button {
        font-size: 12px;
        padding: 5px 8px;
    }

    button {
        font-size: 14px;
        padding: 8px 12px;
    }
}
