/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to left, #1e2b5b, #9384ff);
}

.container {
    display: flex;
    width: 900px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.left-side {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.logo-img {
    width: 70%;
    height: auto;
}

.right-side {
    background-color: #eaeaea;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
    padding: 20px;
}

h2 {
    font-family: "Yeseva One", sans-serif;  
    font-size: 48px;
    margin-bottom: 10px;
}

h1 {
    font-family: "Yeseva One", sans-serif;  
    font-size: 32px;
    margin-bottom: 10px;
}

.btn {
    width: 200px;
    margin: 10px;
    padding: 12px 0;
    background-color: #1e2b5b;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0d1a3a;
}

a {
    text-decoration: none;
    color: #1e2b5b;
}

a:hover {
    text-decoration: underline;
}
