/* Container for the transfer form */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f7f7f7;
    padding: 20px;
    flex-direction: column; /* Adjust to align form and tutorial video vertically */
}

/* Transfer Form Styling */
.form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.form select,
.form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form select:focus,
.form input:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.form a {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Scroll for Tutorial Title */
.tutorial-title {
    text-align: center;
    margin-top: 30px;
}

.tutorial-title h2 {
    font-size: 20px;
    font-weight: normal;
    color: #333;
}

/* Video Container */
.video-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

video {
    width: 100%;
    max-width: 600px; /* Adjust max width as needed */
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .form {
        width: 90%; /* Ensure form fits on smaller screens */
    }

    .tutorial-title h2 {
        font-size: 18px;
    }
}
