body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #b4d8e7; /* fallback for non-supported browsers */
    background-image: url('dolphins.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.beach-container {
    position: relative;
    height: 100vh;
}

.birds {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('birds.png');
    background-repeat: repeat-x;
    top: 0;
    left: 0;
    animation: birds-fly 20s linear infinite;
}

.dolphin {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('dolphins.gif') repeat-x bottom left;
    animation: dolphins-jump 15s linear infinite;
}

.sun {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-color: #f9d71c;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(249, 215, 28, 0.5);
}

.form-container {
    position: relative;
    z-index: 1;
    margin: 50px auto;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: calc(100% - 35px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none; /* Remove default input focus outline */
    transition: border-color 0.3s; /* Add transition effect for border color change */
}

.input-group input:focus {
    border-color: #008CBA; /* Change border color on focus */
}

.otp-btn,
.register-btn {
    width: 60px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.otp-btn {
    background-color: #007ba7;
    color: white;
    margin-left: 10px;

}

.otp-btn:hover {
    background-color: #032633;
}

.register-btn {
    background-color: #007ba7;
    color: white;
    width: 100%;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center items horizontally */
    margin-top: 10px; /* Add margin for spacing */
    
}

.register-btn:hover {
    background-color: #007ba7;
}

.response {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
}

.response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.response.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes birds-fly {
    0% { background-position: 0 0; }
    100% { background-position: 100% 0; }
}
.otp-group {
    display: flex; /* Use flexbox to align items horizontally */
    align-items: center; /* Center items vertically */
}

.otp-input {
    flex: 1; /* Allow the input field to take up remaining space */
    width: 160px;
    margin-right: 5px; /* Add some space between the input field and the button */
}

.otp-group {
    margin-bottom: 20px;
}

.otp-group input {
    width: calc(80% - 45px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none; /* Remove default input focus outline */
    transition: border-color 0.3s; /* Add transition effect for border color change */
}

.otp-group input:focus {
    border-color: #008CBA; /* Change border color on focus */
}
.centered {
    text-align: center; /* Center the text horizontally */
}
