@media screen and (min-width: 300px){
    .verify-page{
        width: 100%;
        height: 100dvh;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 100px 0px;
        background-color: var(--thm-base);
    
    
        .holder{
            width: 100%;
            max-width: 500px;
            padding: 50px 40px;
            background-color: rgb(255, 255, 255);
            border-radius: 15px;
            
    
            .logo {
                width: 100%;
                height: 100px;
    
                img {
                    width: 120px;
                    height: 50px;
                }
            }
    
            
    
            form{
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                margin-top: 20px;
    
                label{
                    text-align: left;
                }
    
    
                input[type="email"] {
                    width: 100%;
                    padding: 10px;
                    margin: 5px 0;
                    border: 1px solid rgb(117,137,145);
                    border-radius: 4px;
                    font-size: 15px;
                    color: black;
                    font-weight: 500;
                }
    
                input:focus{
                    outline: none;
                    border: 1px solid rgb(231, 54, 103);
                }
    
                .button{
                    width: 100%;
                    padding: 12px;
                    /* border-radius: 30px; */
                    transition: background-color 0.5s ease-in-out;
                    background: linear-gradient(to right, rgb(231, 54, 103), rgb(241, 88, 70), rgb(252, 126, 25));;
                    border: none;
                    color: var(--thm-white);
                    font-weight: 700;
    
                    &:hover{
                        background: linear-gradient(to right, rgb(231, 54, 103), rgb(231, 54, 103), rgb(231, 54, 103));;
                    }
                }
            }
    
            p{
                margin-top: 20px;
                margin-bottom: 30px;
            }
    
            
        }
    }
}

@media screen and (min-width: 700px){
    .verify-page{
        width: 100%;
        height: 100dvh;
        height: 100vh;
        display: flex;
        justify-content: center;
        padding: 100px 0px;
        background-color: var(--thm-base);
    
    
        .holder{
            width: 100%;
            max-width: 500px;
            padding: 50px 60px;
            background-color: rgb(255, 255, 255);
            border-radius: 15px;
            
    
            .logo {
                width: 100%;
                height: 100px;
    
                img {
                    width: 120px;
                    height: 50px;
                }
            }
    
            
    
            form{
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                margin-top: 20px;

    
    
                input[type="email"] {
                    width: 100%;
                    padding: 10px;
                    margin: 5px 0;
                    border: 1px solid rgb(117,137,145);
                    border-radius: 4px;
                    font-size: 15px;
                    color: black;
                    font-weight: 500;
                }
    
                input:focus{
                    outline: none;
                    border: 1px solid rgb(231, 54, 103);
                }
    
                .button{
                    width:  100%;
                    padding: 12px;
                    /* border-radius: 30px; */
                    transition: background-color 0.5s ease-in-out;
                    background: linear-gradient(to right, rgb(231, 54, 103), rgb(241, 88, 70), rgb(252, 126, 25));;
                    border: none;
                    color: var(--thm-white);
                    font-weight: 700;
    
                    &:hover{
                        background: linear-gradient(to right, rgb(231, 54, 103), rgb(231, 54, 103), rgb(231, 54, 103));;
                    }
                }
            }
    
            p{
                margin-top: 20px;
                margin-bottom: 30px;
            }
    
            
        }
    }
}

@media screen and (min-width: 1100px){
    .verify-page{
        width: 100%;
        height: 100dvh;
        height: 100vh;
        display: flex;
        justify-content: center;
        padding: 100px 0px;
        background-color: var(--thm-base);
    
    
        .holder{
            width: 100%;
            max-width: 500px;
            padding: 50px 60px;
            background-color: rgb(255, 255, 255);
            border-radius: 15px;
            
    
            .logo {
                width: 100%;
                height: 100px;
    
                img {
                    width: 120px;
                    height: 50px;
                }
            }
    
            
    
            form{
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                margin-top: 20px;

    
    
                input[type="email"] {
                    width: 100%;
                    padding: 10px;
                    margin: 5px 0;
                    border: 1px solid rgb(117,137,145);
                    border-radius: 4px;
                    font-size: 15px;
                    color: black;
                    font-weight: 500;
                }
    
                input:focus{
                    outline: none;
                    border: 1px solid rgb(231, 54, 103);
                }
    
                .button{
                    width:  100%;
                    padding: 12px;
                    /* border-radius: 30px; */
                    transition: background-color 0.5s ease-in-out;
                    background: linear-gradient(to right, rgb(231, 54, 103), rgb(241, 88, 70), rgb(252, 126, 25));;
                    border: none;
                    color: var(--thm-white);
                    font-weight: 700;
    
                    &:hover{
                        background: linear-gradient(to right, rgb(231, 54, 103), rgb(231, 54, 103), rgb(231, 54, 103));;
                    }
                }
            }
    
            p{
                margin-top: 20px;
                margin-bottom: 30px;
            }
    
            
        }
    }

    /* Modal container */
    .modal {
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.4);
        display: none;
    }

    /* Modal content */
    .modal-content {
        background-color: #fefefe;
        margin: 20% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 400px;
        text-align: center;
    }

    /* Close button */
    .close {
        color: #aaa;
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        top: 5px;
        right: 10px;
    }

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    /* Success Icon */
    .icon-success {
        color: green;
        /* Green color for success icon */
        font-size: 36px;
        /* Adjust size if needed */
        margin-bottom: 10px;
        /* Space between the icon and the text */
    }

    /* Error Icon */
    .icon-error {
        color: red;
        /* Red color for error icon */
        font-size: 36px;
        /* Adjust size if needed */
        margin-bottom: 10px;
        /* Space between the icon and the text */
    }
}