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

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

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

.register-visual img {
    width: 70%;
    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);
    }
}

.register-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}


.register-heading h2 {
    margin: 8px 0 10px;
    color: #111827;
    font-size: clamp(1.45rem, 4vw, 2.5rem);
    line-height: 1.12;
    max-width: 30ch;
}

.register-heading p {
     color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}
.register-form {
    margin-top: 20px;
}


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

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

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

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

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

.register-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);
}

.register-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) {
   .register-visual {
        display: none;
    }

    .register-form{
        width: 95%;
    }

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