﻿/* style.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 15px;
}

.signup-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: calc(100% - 30px); /* 👈 side gap */
    max-width: 400px;
    margin: 0 15px; /* 👈 left + right spacing */
}

h2 {
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

p {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
}

.input-group {
    margin-bottom: 20px;
}

    .input-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #444;
        font-size: 14px;
    }

input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

    input:focus {
        outline: none;
        border-color: #667eea;
    }

/* Password Wrapper Logic */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #667eea;
    font-weight: bold;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
}

.signup-btn {
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .signup-btn:hover {
        background: #5a67d8;
    }

.footer-text {
    margin-top: 20px;
    font-size: 13px;
}

    .footer-text a {
        color: #667eea;
        text-decoration: none;
        font-weight: bold;
    }



/* Add these to your existing style.css */

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.forgot-link {
    font-size: 12px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.options-row {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

    .checkbox-container input {
        width: auto;
        margin-right: 8px;
        cursor: pointer;
    }

/* Ensure the button has a little extra breathing room */
.signup-btn {
    margin-top: 10px;
}

@media (max-width: 480px) {
    .signup-container {
        padding: 25px;
        margin: 15px;
    }
}