.body-style {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    background-image: url(../images/index/bg-image.jpg);
    color:#000;
    background-size: cover;
    }
    
    .verify-container {
    width: 300px;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
    user-select: none;
    }
    
    .verify-btn {
    width: 100%;
    height: 100%;
    background-color: #4caf50;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }
    
    .verify-btn:hover {
    background-color: #45a049;
    }
    
    .verify-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    }