
/* =====================================================
   main
===================================================== */

.h {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

/* Title */
.h h1 {
    text-align: center;
    color: #6a11cb;
    margin-bottom: 5px;
}

/* Subtitle */
.h p {
    text-align: center;
    color: #444;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 20px;
    
}



input {
    width: 100%;
    padding: 12px;
    border: 2px solid #514c57;
    border-radius: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    background: #f8f3ff;
}

/* Input focus effect */
input:focus {
    border-color: #2575fc;
    background: white;
    outline: none;
    box-shadow: 0 0 8px rgba(37, 117, 252, 0.4);
}



.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #2575fc;
    color: white;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 30px;
}

.submit-btn:hover {
    background: #6a11cb;
}

/* =========================
  FOOTER STYLING
========================== */
footer {
    background-color: #000000;
    color: #ffffff;
    margin-top: 50px;
}

footer h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

footer a {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.social-icons-wrapper {
    display: inline-block;
    text-align: right;
    margin-top: 0.5rem;
}

.social-icon {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: #ffd700;
    transform: scale(1.2);
}

