/* Container styling for the specific login form */
.logform {
    background: #ffffff;
    max-width: 400px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Label styling */
.logform label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
}

/* Input fields (Email & Password) */
.logform input[type="email"],
.logform input[type="password"],
.logform input[type="text"]{
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 24px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #2d3748;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Focus state for inputs */
.logform input:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.15);
}

/* Submit button styling */
.logform input[type="submit"] {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

/* Button hover effects */
.logform input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.logform input[type="submit"]:active {
    transform: translateY(0);
}

/* Internal link styling */
.logform a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
}

.logform a:hover {
    text-decoration: underline;
}