body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    margin: 20px;
}

h2 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-box {
    width: 10%;
    text-align: center;
    padding: 7.5px;
    border: 1px solid #ccc;
}

.icon-box i {
    color: #999;
}

.placeholder-box {
    width: 83%;
}

.placeholder-box input {
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 97%;
}

button[type="submit"],
button[type="button"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px; /* Add margin between buttons */
}

button[type="submit"]:hover,
button[type="button"]:hover {
    background-color: #0056b3;
}

.message {
    text-align: center;
}

.button-group {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
.button-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .register-btn, .utama {
            flex: 1;
            margin: 5px;
        }
.utama {
            background-color: #003322 !important; /* Warna lain untuk butang LOGIN PELAJAR */
            color: white;
        }
.utama:hover {
            background-color: #0056B3 !important; /* Warna hover untuk butang LOGIN PELAJAR */
        }