/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Logo Styling */
.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #4070f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container for the Signup Form */
.container {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    width: 450px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

header {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-field {
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
}

.input-field label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.input-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4070f4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #265df2;
}

.signup-option {
    margin-top: 15px;
    font-size: 14px;
}

.signup-option a {
    color: #4070f4;
    text-decoration: none;
}

.signup-option a:hover {
    text-decoration: underline;
}

/* Align file upload fields */
.input-field input[type="file"] {
    padding: 0;
}


/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 2px;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #4070f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-top: 300px;
    margin-bottom: 300px;
}

/* Smaller container for Sign-In Form */
.signin-container {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    width: 320px;  /* Smaller width */
    text-align: center;
}

header {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.input-field {
    margin-bottom: 15px;
}

.input-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

.input-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4070f4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #265df2;
}

.signup-option {
    margin-top: 15px;
    font-size: 14px;
}

.signup-option a {
    color: #4070f4;
    text-decoration: none;
}

.signup-option a:hover {
    text-decoration: underline;
}
