body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}


.login-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.login-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.login-visual {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.login-visual img {
    width: 40%;
    height: auto;
    border-radius: 5px;
    animation: swing 3.5s alternate ease-in-out infinite;
}









@keyframes swing {

    0%,
    100% {
        transform: translateY(25px);
    }

    50% {
        transform: translateY(-25px);
    }
}





.login-heading h2 {
    color: #111827;
    /* max-width: 30ch; */
}

.login-heading p {
     color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}














.login-form input {
    display: block;
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
}

.login-form input:focus-within {
    border-color: #ff7a59;
    background-color: #fff;
    outline: none;
}

.login-form input::placeholder {
    color: #999;
    font-family: Arial, Helvetica, sans-serif;
}

.login-form p{
    margin-top: 8px;
    font-size: 17px;
    color: #475569;
}

.login-form p a{
    color:#0056b3;
    
}

.login-form button {
    border: none;
    border-radius: 4px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f13625, #ff7a59);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(241, 54, 37, 0.18);
}

.login-form button:hover {
    background: linear-gradient(110deg, blue, #ff7a59);

    animation: all .4s ease-in-out;
}


.set-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.set-icons ion-icon{
    border-left: 2px solid #ccc;
    border-right: 2px solid #ccc;
    border-top: none;
    border-bottom: none;
    font-size: 20px;
    border-radius: 5px;
}


.set-icons ion-icon:hover{
    color: #ff7a59;
    cursor: pointer;
    transition: all .2s ease-in-out;
}



@media (max-width: 768px) {
   .login-visual {
        display: none;
    }

    .login-form{
        width: 95%;
    }

    .login-copy {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    
}