.sign-up{
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
   justify-content: center;
    flex-direction: column;
    align-items: center;
   

}
form{
    display: flex;
    flex-direction: column;
    width: 300px;
    
    justify-content: space-around;
     justify-content: center;
    align-items: center;

}
.sign{
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
label{
    font-size: 1.2rem;
    font-weight: 400;

}
input {
    width: 100%;
    min-height: 55px;
    border-radius: 8px;
    border: 1px solid #c7c7e2;
    padding: 0 15px;
    font-size: 1rem;
    margin-bottom: 15px;
}

input::placeholder {
    font-weight: 500;
    color: #6b7280;
}

input:focus {
    outline: none;
    border-color: #7c3aed;
}

.texts {
    font-size: 1.2rem;
}
.logo{
    font-size: 1.3rem;

}
.divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d1d5db;
}
.socials {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    border: 1px solid #7c3aed;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn.google {
    color: #ea4335;
}

.social-btn.facebook {
    color: #1877f2;
}

.social-btn.apple {
    color: #000;
}

.social-btn:hover {
    background: #f5f3ff;
}
.terms {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin: 20px 0;
}

.terms a {
    color: #6d28d9;
    text-decoration: none;
    font-weight: 500;
}

.terms a:hover {
    text-decoration: underline;
}
.login-redirect {
    width: 100%;
    background: #f9fafb;
    padding: 16px;
    text-align: center;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-top: 15px;
}

.login-redirect a {
    color: #6d28d9;
    font-weight: 600;
    text-decoration: none;
}

.login-redirect a:hover {
    text-decoration: underline;
}
.mega-footer {
    background: #1f2233;
    color: #e5e7eb;
    padding: 40px 20px 20px;
    font-size: 0.9rem;
}

.footer-top {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-top p {
    font-weight: 500;
}

.footer-logos span {
    margin-left: 15px;
    opacity: 0.8;
}

.mega-footer hr {
    border: none;
    border-top: 1px solid #374151;
    margin: 25px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

.footer-grid h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid li {
    margin-bottom: 8px;
    opacity: 0.85;
    cursor: pointer;
}

.footer-grid li:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-lang {
    cursor: pointer;
}
.sign_up{
    width: 100%;
    min-height: 50px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    border: none;
    background-color: #7c3aed;
}
.resend{
    margin-top: 20px;
    color: #6d28d9;
    font-size: 0.9rem;
    font-weight: 500;
    
}